 /* General Styling */
    body {
      background: #f9f9f9;
      font-family: 'Segoe UI', sans-serif;
      color: #333;
    }

    h1, h2 {
      font-weight: 700;
      color: #222;
    }

    /* Section Cards */
    .box {
      background: white;
      border-radius: 15px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .box.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hover Effect */
    .box:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 198, 255, 0.3);
    }

    /* CTA Button */
    button.cta {
      background: linear-gradient(90deg, #007bff, #00c6ff);
      border: none;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    button.cta:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 198, 255, 0.5);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 15px;
      background: #111;
      color: white;
      font-size: 14px;
      margin-top: 20px;
    }

    /* Responsive Design */
    @media (max-width: 576px) {
      h1 {
        font-size: 1.8rem;
      }
      h2 {
        font-size: 1.3rem;
      }
      .box {
        padding: 18px;
      }
      button.cta {
        font-size: 16px;
        padding: 10px 18px;
      }
    }